Skip to content

Conversation

@cwperks
Copy link
Member

@cwperks cwperks commented Oct 21, 2025

Description

This PR is related to the changes in opensearch-project/security#5713 to support multiple resource types in the same index. There's a small change in all ResourceSharingClient methods to accept type in the place of index.

resource type <-> resource index is a many-to-one relationship (think dashboards saved objects where multiple saved object types are in the same index).

On another note, ResourceSharingClient is used in instances where a mechanism doesn't currently exist as in parent<->child relationships (like a detector and results where all results are associated with a detector). Security is working on a mechanism to support this natively to obviate the need for ResourceSharingClient and instead abstract all the logic behind-the-scenes to the security plugin.

Check List

  • New functionality includes testing.
  • New functionality has been documented.
  • API changes companion pull request created.
  • Commits are signed per the DCO using --signoff.
  • Public documentation issue/PR created.

By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license.
For more information on following Developer Certificate of Origin and signing off your commits, please check here.

@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval October 21, 2025 02:29 — with GitHub Actions Error
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval October 21, 2025 02:29 — with GitHub Actions Error
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval October 21, 2025 02:29 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval October 21, 2025 02:29 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 4, 2025 19:46 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 4, 2025 19:46 — with GitHub Actions Error
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 4, 2025 19:46 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 4, 2025 19:46 — with GitHub Actions Error
Signed-off-by: Craig Perkins <[email protected]>
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 4, 2025 20:58 — with GitHub Actions Error
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 4, 2025 20:58 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 4, 2025 20:58 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 4, 2025 21:58 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 4, 2025 21:58 — with GitHub Actions Error
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 00:39 — with GitHub Actions Error
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 00:39 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 00:39 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 00:39 — with GitHub Actions Error
mingshl
mingshl previously approved these changes Nov 5, 2025
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 18:59 — with GitHub Actions Failure
@mingshl
Copy link
Collaborator

mingshl commented Nov 5, 2025

CI failed not related to code changes

Tests with failures:
 - org.opensearch.ml.action.models.SearchModelTransportActionTests.test_RSC_featureEnabled_typeEnabled_callsGetAccessibleIds

> Task :opensearch-ml-plugin:test FAILED

@mingshl
Copy link
Collaborator

mingshl commented Nov 5, 2025

@cwperks can you look at this test and try reproduce locally?

REPRODUCE WITH: ./gradlew ':opensearch-ml-plugin:test' --tests 'org.opensearch.ml.action.models.SearchModelTransportActionTests.test_RSC_featureEnabled_typeEnabled_callsGetAccessibleIds' -Dtests.seed=83E68BE5CBA8AF9D -Dtests.security.manager=false -Dtests.locale=en-AE -Dtests.timezone=America/Argentina/Mendoza -Druntime.java=21

SearchModelTransportActionTests > test_RSC_featureEnabled_typeEnabled_callsGetAccessibleIds FAILED
    Argument(s) are different! Wanted:
    resourceSharingClient.getAccessibleResourceIds(
        ".plugins-ml-model-group",
        <any>
    );
    -> at org.opensearch.ml.action.models.SearchModelTransportActionTests.test_RSC_featureEnabled_typeEnabled_callsGetAccessibleIds(SearchModelTransportActionTests.java:388)
    Actual invocations have different arguments at position [0]:
    resourceSharingClient.isFeatureEnabledForType(
        "ml-model-group"
    );
    -> at org.opensearch.ml.helper.ModelAccessControlHelper.shouldUseResourceAuthz(ModelAccessControlHelper.java:298)
    resourceSharingClient.getAccessibleResourceIds(
        "ml-model-group",
        org.opensearch.core.action.ActionListener$1@5a3247ce
    );
    -> at org.opensearch.ml.action.handler.MLSearchHandler.search(MLSearchHandler.java:158)
        at __randomizedtesting.SeedInfo.seed([83E68BE5CBA8AF9D:447841CA93562BD9]:0)

@cwperks
Copy link
Member Author

cwperks commented Nov 5, 2025

@cwperks can you look at this test and try reproduce locally?

REPRODUCE WITH: ./gradlew ':opensearch-ml-plugin:test' --tests 'org.opensearch.ml.action.models.SearchModelTransportActionTests.test_RSC_featureEnabled_typeEnabled_callsGetAccessibleIds' -Dtests.seed=83E68BE5CBA8AF9D -Dtests.security.manager=false -Dtests.locale=en-AE -Dtests.timezone=America/Argentina/Mendoza -Druntime.java=21

SearchModelTransportActionTests > test_RSC_featureEnabled_typeEnabled_callsGetAccessibleIds FAILED
    Argument(s) are different! Wanted:
    resourceSharingClient.getAccessibleResourceIds(
        ".plugins-ml-model-group",
        <any>
    );
    -> at org.opensearch.ml.action.models.SearchModelTransportActionTests.test_RSC_featureEnabled_typeEnabled_callsGetAccessibleIds(SearchModelTransportActionTests.java:388)
    Actual invocations have different arguments at position [0]:
    resourceSharingClient.isFeatureEnabledForType(
        "ml-model-group"
    );
    -> at org.opensearch.ml.helper.ModelAccessControlHelper.shouldUseResourceAuthz(ModelAccessControlHelper.java:298)
    resourceSharingClient.getAccessibleResourceIds(
        "ml-model-group",
        org.opensearch.core.action.ActionListener$1@5a3247ce
    );
    -> at org.opensearch.ml.action.handler.MLSearchHandler.search(MLSearchHandler.java:158)
        at __randomizedtesting.SeedInfo.seed([83E68BE5CBA8AF9D:447841CA93562BD9]:0)

looking, a few min

Signed-off-by: Craig Perkins <[email protected]>
@cwperks
Copy link
Member Author

cwperks commented Nov 5, 2025

@mingshl pushed a commit to fix that test suite..my bad. I missed 2 instances to update.

@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 19:09 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 19:09 — with GitHub Actions Error
@cwperks cwperks temporarily deployed to ml-commons-cicd-env-require-approval November 5, 2025 19:09 — with GitHub Actions Inactive
@cwperks cwperks deployed to ml-commons-cicd-env-require-approval November 5, 2025 19:09 — with GitHub Actions Active
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 20:39 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 20:39 — with GitHub Actions Error
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 22:41 — with GitHub Actions Error
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 22:41 — with GitHub Actions Failure
@cwperks cwperks had a problem deploying to ml-commons-cicd-env-require-approval November 5, 2025 23:24 — with GitHub Actions Failure
@dhrubo-os
Copy link
Collaborator

@peterzhuamazon can we override and merge? Couple integ test suites have passed already. This is blocking development.

@cwperks cwperks merged commit 4455206 into opensearch-project:main Nov 6, 2025
26 of 34 checks passed
@cwperks
Copy link
Member Author

cwperks commented Nov 6, 2025

@peterzhuamazon can we override and merge? Couple integ test suites have passed already. This is blocking development.

Merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants